home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / ViePratique / gnucash / gnucash-2.6.5-setup.exe / {app} / share / aqbanking / dialogs / dlg_importer.dlg < prev    next >
Extensible Markup Language  |  2014-12-19  |  3KB  |  75 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <!--
  4. /***************************************************************************
  5.  copyright   : (C) 2010 by Martin Preuss
  6.  email       : martin@aqbanking.de
  7.  
  8.  ***************************************************************************
  9.  * This file is part of the project "AqBanking".                           *
  10.  * Please see toplevel file COPYING of that project for license details.   *
  11.  ***************************************************************************/
  12. -->
  13.  
  14. <dialog type="dialog" name="ab_importwizard" i18n="aqbanking"
  15.         flags="decorShrinkable decorStretchable decorMaximize decorMinimize decorClose decorMenu" >
  16.   <widget type="vlayout" flags="fillX fillY" >
  17.  
  18.     <!-- wizard pages -->
  19.     <widget type="widgetStack" name="wiz_stack" flags="fillX fillY" >
  20.       <!-- intro page -->
  21.       <widget type="vlayout" flags="fillX fillY" >
  22.         <widget type="label" name="wiz_begin_label" flags="fillX fillY justifyLeft" />
  23.       </widget>
  24.  
  25.       <!-- file page -->
  26.       <widget type="vlayout" flags="fillX fillY" >
  27.         <widget type="label" name="wiz_file_label" flags="fillX fillY justifyLeft" />
  28.         <widget type="hlayout" flags="fillX" >
  29.           <widget type="label" text="File" />
  30.           <widget type="lineEdit" name="wiz_file_edit" flags="fillX" />
  31.           <widget type="pushButton" name="wiz_file_button" text="Select" />
  32.         </widget>
  33.       </widget>
  34.       
  35.       <!-- importer page -->
  36.       <widget type="vlayout" flags="fillX fillY" >
  37.         <widget type="label" name="wiz_importer_label" flags="fillX justifyLeft" />
  38.         <widget type="listBox" name="wiz_importer_list" flags="fillX fillY" />
  39.       </widget>
  40.  
  41.       <!-- profile page -->
  42.       <widget type="vlayout" flags="fillX fillY" >
  43.         <widget type="label" name="wiz_profile_label" flags="fillX justifyLeft" />
  44.         <widget type="hlayout" flags="fillX fillY" >
  45.           <widget type="listBox" name="wiz_profile_list" flags="fillX fillY" />
  46.           <widget type="vlayout" flags="fillY equalWidth" >
  47.             <widget type="pushButton" text="Edit"     name="wiz_profile_edit_button" />
  48.             <widget type="pushButton" text="New"      name="wiz_profile_new_button" />
  49.             <widget type="pushButton" text="Delete"   name="wiz_profile_del_button" />
  50.             <widget type="vspacer" flags="fillY" />
  51.           </widget>
  52.         </widget>
  53.       </widget>
  54.  
  55.       <!-- extro page -->
  56.       <widget type="vlayout" flags="fillX fillY" >
  57.         <widget type="label" name="wiz_end_label" flags="fillX fillY justifyLeft" />
  58.       </widget>
  59.  
  60.     </widget>
  61.  
  62.     <!-- wizard controls -->
  63.     <widget type="hLine" flags="fillX" />
  64.     <widget type="hlayout" flags="fillX equalWidth" >
  65.       <widget type="pushButton" text="Help"     name="wiz_help_button" />
  66.       <widget type="hspacer" flags="fillX" />
  67.       <widget type="pushButton" text="Previous" name="wiz_prev_button" />
  68.       <widget type="pushButton" text="Next"     name="wiz_next_button" flags="default" />
  69.       <widget type="pushButton" text="Abort"    name="wiz_abort_button" />
  70.     </widget>
  71.  
  72.   </widget>
  73.  
  74. </dialog>
  75.